mlatoz

R-Squared Intuition

R Squared


Adjusted R-Squared Intuition

Adjusted R Squared

Problem:

y^ = b0 + b1X1 + b2X2

SStot doesn’t change

SSres will decrease or stay the same (This is because of Ordinary Least Squares: SSres-> Min)

Solution:

Adj R2 = 1 - (1 - R2) * (n - 1)/(n - k - 1)

k - number of independent variables
n - sample size


«Previous Next»